home *** CD-ROM | disk | FTP | other *** search
/ Your Choice 1 / your choice.zip / your choice / PRGMMING / SORTING / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-01-15  |  2KB  |  35 lines

  1. echo off
  2. CLS
  3. echo ╔═════════════════════════════════════════════════════════════════════════════╗
  4. echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
  5. echo ║░┌─────────────────────────────────────────────────────────────────────────┐░║
  6. echo ║░│                      S O R T I N G   T U T O R (C)          Version: 1.1│░║
  7. echo ║░│                         Program By John Fuchs             Copyright 1990│░║
  8. echo ║░│                                                                         │░║
  9. echo ║░│               *****  INSTALLATION TO HARD DRIVE *****                   │░║
  10. echo ║░│                                                                         │░║
  11. echo ║░│ This batch file will install this program on your hard drive.  The      │░║
  12. echo ║░│ entire program will be place on C:\sorting.  Remember, type sorting     │░║
  13. echo ║░│ -ENTER- to start the program (cd\sorting before running).  IF YOU DO    │░║
  14. echo ║░│ NOT want to place this program on the hard drive, press CTRL-BREAK now. │░║
  15. echo ║░│                                                                         │░║
  16. echo ║░│                                                                         │░║
  17. echo ║░│                     PRESS ANY KEY TO START INSTALL                      │░║
  18. echo ║░│                                                                         │░║
  19. echo ║░│                        THANK YOU FOR SUPPORTING                         │░║
  20. echo ║░│                        ELITE SOFTWARE CONCEPTS                          │░║
  21. echo ║░│                                                                         │░║
  22. echo ║░└─────────────────────────────────────────────────────────────────────────┘░║
  23. echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
  24. echo ╚═════════════════════════════════════════════════════════════════════════════╝
  25. pause
  26. CLS
  27. c:
  28. md\sorting
  29. copy a:\*.* c:\sorting\*.* >NUL
  30. echo BYE !
  31. echo Remember, type Sorting from this directory to start the program.
  32. cd
  33.  
  34.  
  35.